home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / CALCDAM.CPP next >
Encoding:
Text File  |  1993-08-12  |  217 b   |  14 lines

  1. // dice.lib function calc_damage()
  2.  
  3. int calc_damage(int damage,int die)
  4. {
  5.     int normal1;
  6.  
  7.     if (damage==1 && die==6) {
  8.         normal1+=2;
  9.     }
  10.     if (damage==1 && die<6 && die>1) {
  11.         normal1+=1;
  12.     }
  13. return normal1;
  14. }